home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 5 / inter@ivo 1996-06.iso / cybint5 / bin / gforum.dxr / 00039.ls < prev    next >
Encoding:
Text File  |  1996-05-13  |  348 b   |  20 lines

  1. on exitFrame
  2.   set i to 8
  3.   if rollOver(16) then
  4.     go("g")
  5.   end if
  6.   if the mouseCast = 50 then
  7.     go("naveg")
  8.   end if
  9.   repeat while i < 17
  10.     if rollOver(i) then
  11.       set the visible of sprite (i - 6) to 1
  12.     else
  13.       set the visible of sprite (i - 6) to 0
  14.     end if
  15.     set i to i + 1
  16.   end repeat
  17.   updateStage()
  18.   go(the frame)
  19. end
  20.